home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / picture / ringpict.h < prev    next >
Text File  |  1993-09-23  |  694b  |  38 lines

  1. //    Copyright 1993 Ralph Gonzalez
  2.  
  3. /*
  4. *    FILE:        ringpict.h
  5. *    AUTHOR:        R. Gonzalez
  6. *    CREATED:    November 7, 1990
  7. *
  8. *    Defines sample pict application class.
  9. */
  10.  
  11. # ifndef    ringpict_h
  12. # define    ringpict_h
  13.  
  14. # include    "pict.h"
  15. # include    "camera.h"
  16. # include    "trans.h"
  17. # include    "segment.h"
  18.  
  19. /******************************************************************
  20. *   ring_pict application
  21. ******************************************************************/
  22. class    Ring_Pict:public Generic_Pict
  23. {
  24. private:
  25.     Projector        *projector1,
  26.                     *projector2,
  27.                     *projector3;
  28.     Camera            *camera1,
  29.                     *camera2;
  30.     Segment            *segment;
  31.             
  32. public:
  33.     Ring_Pict(void);
  34.     void            run(void);
  35.     virtual            ~Ring_Pict(void);
  36. };
  37.  
  38. # endif